home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WW3DKit / WW3DShapeCell.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  363 b   |  23 lines

  1. // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
  2. // see COPYRIGHT for reuse legalities
  3. //
  4.  
  5. #import <appkit/appkit.h>
  6.  
  7. @interface WW3DShapeCell:NXBrowserCell
  8. {
  9.   id  shape;
  10. }
  11.  
  12. - init;
  13. - initTextCell:(const char *)aString;
  14. - awake;
  15. - shape; 
  16. - write:(NXTypedStream *)stream;
  17. - read:(NXTypedStream *)stream; 
  18.  
  19. - setShape:shape;
  20. - shape;
  21.  
  22. @end
  23.